home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2002 #3
/
Amiga Plus CD - 2002 - No. 03.iso
/
AmiSoft
/
Dev
/
Lang
/
Nano.lha
/
nano
/
prog
/
circle.n
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2002-07-23
|
277 b
|
17 lines
#include <math.h>
double d; double c;
string inp[80];
print /n;
print "RETURN to exit", /n2;
inp = " ";
while inp != "";
input "diameter: " inp;
if inp != "";
val d inp;
c = M_PI * d;
print "circumference: ", c, /n2;
endif;
wend;